home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / others / nologo.zip / MSLOGO.TXT
Text File  |  1990-09-01  |  1KB  |  37 lines

  1. Tired of the Microsoft logo which appears every time you start
  2. windows?  It takes up precious time to some, and quite frankly
  3. can get pretty boring.  Well, fret no more...
  4.  
  5. First, back-up WIN.COM ("COPY WIN.COM WIN.CON, or whatever).
  6. Then use the DOS DEBUG function:
  7.  
  8.     Type ===>  DEBUG WIN.COM <ENTER>
  9.  
  10. Debug displays a dash (-).
  11.  
  12.     Type ===>  S100,FFFF,'LOGO' <ENTER>
  13.  
  14. Debug should display a code such as 221C:0E80
  15. (If no code is displayed, TYPE ===> Q to end patch)
  16. Whatever the code may be, you can display the address:
  17.  
  18.     TYPE ===>  D1A00:09F0 <ENTER>
  19.  
  20. The memory address is displayed.  Patch the logo by replacing o 
  21. n e of the letters (of "LOGO") with an alternative letter, so th
  22.  at it won't be recognized...
  23.  
  24.     TYPE ===>  E221C:0E80 (or whatever you received) <ENTER>
  25.  
  26. Debug displays "4C".  
  27.  
  28.     TYPE ===>  6C (which would replace "L" with "l") <ENTER>
  29.  
  30. Now you are finished patching and must save the new WIN.COM:
  31.  
  32.     TYPE ===>  W <ENTER>
  33.     TYPE ===>  Q <ENTER> 
  34.  
  35. That's it!  Now when you start-up Windows, it will skip right
  36. past the logo going directly to the Program Manager.
  37.